projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21a0d7a
)
(apply_modifiers): Use assq_no_quit.
author
Richard M. Stallman
<rms@gnu.org>
Tue, 21 Jun 1994 19:47:44 +0000
(19:47 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 21 Jun 1994 19:47:44 +0000
(19:47 +0000)
src/keyboard.c
patch
|
blob
|
history
diff --git
a/src/keyboard.c
b/src/keyboard.c
index 20ea07a6d5ab0c1a0d9e5e390194db1b407c2872..59b63c993335b557069f4790cb7e89e171089f19 100644
(file)
--- a/
src/keyboard.c
+++ b/
src/keyboard.c
@@
-3156,7
+3156,7
@@
apply_modifiers (modifiers, base)
/* The click modifier never figures into cache indices. */
cache = Fget (base, Qmodifier_cache);
XFASTINT (index) = (modifiers & ~click_modifier);
- entry =
Fassq
(index, cache);
+ entry =
assq_no_quit
(index, cache);
if (CONSP (entry))
new_symbol = XCONS (entry)->cdr;